home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-06 / 3c503.zip / MENU.BAT < prev    next >
DOS Batch File  |  1992-01-06  |  1KB  |  76 lines

  1. echo off
  2. REM %%VER EtherLink II Drivers Installation program v2.0c
  3. if /%mono%==/ goto chkparm
  4. if %mono%==y goto setmono
  5. :chkparm
  6. set mono=n
  7. if /%1==/ goto chkvideo
  8. if %1==/m goto setmono
  9. if not %1==/M goto chkvideo
  10. :setmono
  11. set mono=y
  12. cls
  13. goto contin
  14.  
  15. :chkvideo
  16. install\check videocard
  17. if errorlevel 1 goto color
  18. cls
  19. goto contin
  20. :color
  21. install\get b 31
  22. :contin
  23. type main.men
  24. install\flushkey
  25. install\echoxy 19 17 Select Option: 
  26. install\reply
  27. if errorlevel 60 goto inval
  28. if errorlevel 59 goto help
  29. if errorlevel 55 goto inval
  30. if errorlevel 54 goto end
  31. if errorlevel 53 goto info
  32. if errorlevel 52 goto diag
  33. if errorlevel 51 goto 3plus
  34. if errorlevel 50 goto ndis
  35. if errorlevel 49 goto nw
  36. if errorlevel 28 goto inval
  37. if errorlevel 27 goto end
  38.  
  39. :inval
  40. install\echoxy 20 17 **** Invalid key, try again. ****
  41. echo 
  42. echo 
  43. echo.
  44. menu
  45.  
  46. :help
  47. type main.hlp
  48. pause
  49. menu
  50.  
  51. :info
  52. cd info    
  53. info
  54.  
  55. :diag
  56. cd diag
  57. diag
  58.  
  59. :3plus
  60. cd 3plus
  61. 3plus
  62.  
  63. :ndis
  64. cd ndis
  65. ndis
  66.  
  67. :nw
  68. cd netware
  69. netware
  70.  
  71. :end
  72. cls
  73.  
  74.  
  75. 
  76.